NordStellar (Push)

Browse: 🏠 · Solutions · Connectors · Methods · Tables · Content · Parsers · ASIM Parsers · ASIM Products · Logic Apps · 📊

Back to Connectors Index


Attribute Value
Connector ID NordStellarPush
Publisher Nord Security Inc.
Used in Solutions NordStellar
Collection Method CCF Push
Connector Definition Files connectorDefinition.json
DCR Definition Files DCR.json
CCF Configuration dataConnector.json
CCF Capabilities Push
Ingestion API Log Ingestion APICCF Push connectors use DCR-based Log Ingestion API

The NordStellar connector pushes real-time threat intelligence and exposure events from the NordStellar platform into Microsoft Sentinel using the Codeless Connector Framework (CCF) Push pattern. All event types are routed to a single unified NordStellar_CL table with common columns (EventId, EventType, Module, RiskLevel, AssetType, AssetValue, Tags) extracted by the DCR's KQL transform, while type-specific payload is preserved in a dynamic Details column.

Supported event types:

Tables Ingested

This connector ingests data into the following tables:

Table Transformations Ingestion API Lake-Only
NordStellar_CL ? ?

💡 Tip: Tables with Ingestion API support allow data ingestion via the Azure Monitor Data Collector API, which also enables custom transformations during ingestion.

Permissions

Resource Provider Permissions:

Custom Permissions:

Setup Instructions

⚠️ Note: These instructions were automatically generated from the connector's user interface definition file using AI and may not be fully accurate. Please verify all configuration steps in the Microsoft Sentinel portal.

1. Deploy connector resources

This connector enables NordStellar to push real-time threat intelligence and exposure events directly to Microsoft Sentinel via the Azure Monitor Ingestion API.

Automated configuration

Clicking Deploy will create:

The credentials returned below are then configured in the NordStellar portal so events can be pushed securely. Deploy NordStellar Push connector resources

2. Configure NordStellar

Use the following parameters to configure the Microsoft Sentinel integration in the NordStellar portal.

On-the-wire envelope

NordStellar must POST a JSON array to {DCE URI}/dataCollectionRules/{DCR Immutable ID}/streams/Custom-NordStellar?api-version=2023-01-01 with an OAuth bearer token for the scope https://monitor.azure.com//.default.

Each element wraps the original webhook event in a thin envelope:

[
  {
    "time": "2026-04-27T10:30:00Z",
    "event": {
      "id": "...",
      "type": "DATA_BREACH",
      "module": "LEAKED_DATA",
      "risk_level": "HIGH",
      "date_added": "...",
      "tags": ["NAME"],
      "asset": { "type": "EMAIL", "value": "user@company.com" }
    }
  }
]

The DCR's KQL transform promotes id, type, module, risk_level, asset.type/source_type, asset.value/asset_value, tags, and the appropriate timestamp (date_added for leaked-data/dark-web/domain-permutation, detected_at for attack-surface) into typed columns. Everything else is preserved in the dynamic Details column.

3. Verify data ingestion

Confirm events are flowing from NordStellar to Sentinel. Wait 5-10 minutes after enabling the integration, then run this KQL query in your Microsoft Sentinel workspace:

NordStellar_CL
| where TimeGenerated > ago(1h)
| summarize count() by EventType, Module
| order by count_ desc

If no data appears after 15 minutes, verify the credentials in the NordStellar portal and check Azure Monitor for ingestion errors on the DCR.


Browse: 🏠 · Solutions · Connectors · Methods · Tables · Content · Parsers · ASIM Parsers · ASIM Products · Logic Apps · 📊

Back to Connectors Index